Conditional Template Types |
|
Conditional Template contains a set of pre-defined conditions that would be used in the creation of a Decision Table.
Six types of Conditional Templates are available on the Define Conditions and Actions page. These are tabulated below:
Table 1. Types of Conditional Template
Type |
Parameters |
Description |
---|---|---|
LeadTimeGreaterthan |
The parameter you select (Mins or Hours or Days) is calculated on the greater than (>)condition. |
If you select 10 (mins), 2 (Hours) and 2 (Days) as the parameters, the condition is applicable if the lead time is greater than 2 days, 2 hours and 10 minutes. The Condition Expression is: BUSINESS_EVENT/process_attributes/PROCESS_LEAD_TIME < (2 * (24*60)) + (2 * 60) + (10) |
LeadTimeLessthan |
The parameter you select (Mins or Hours or Days) is calculated on the less than (<) condition. |
If you select 10 (mins), 2 (Hours) and 2 (Days) as the parameters, the condition is applicable if the lead time is less than 2 days, 2 hours and 10 minutes. The Condition Expression is: BUSINESS_EVENT/process_attributes/PROCESS_LEAD_TIME < (2 * (24*60)) + (2 * 60) + (10) |
LeadTimeEqualto |
The parameter you select (Mins or Hours or Days) is calculated on the equal to (=)condition. |
If you select 10 (mins), 2 (Hours) and 2 (Days) as the parameters, the condition ise applicable if the lead time is equal to 2 days, 2 hours and 10 minutes. The Condition Expression is: BUSINESS_EVENT/process_attributes/PROCESS_LEAD_TIME = (2 * (24*60)) + (2 * 60) + (10) |
LeadTimeNotEqualto |
The parameter you select (Mins or Hours or Days) is calculated on the not equal to (!=) condition. |
If you select 10 (mins), 2 (Hours) and 2 (Days) as the parameters, the condition is applicable if the lead time is not equal to 2 days, 2 hours and 10 minutes. The Condition Expression is: BUSINESS_EVENT/process_attributes/PROCESS_LEAD_TIME != (2 * (24*60)) + (2 * 60) + (10) |
LeadTimeLessthanEqualto |
The parameter you select (Mins or Hours or Days) is calculated on the less than equal to (<=) condition. |
If you select 10 (mins), 2 (Hours) and 2 (Days) as the parameters, the condition is applicable if the lead time is less than equal to 2 days, 2 hours and 10 minutes. The Condition Expression is: BUSINESS_EVENT/process_attributes/PROCESS_LEAD_TIME <= (2 * (24*60)) + (2 * 60) + (10) |
LeadTimeGreaterthanEqualto |
The parameter you select (Mins or Hours or Days) is calculated on the greater than to equal (>=) condition |
If you select 10 (mins), 2 (Hours) and 2 (Days) as the parameters, the condition is applicable if the lead time is greater than equal to 2 days, 2 hours and 10 minutes. The Condition Expression is: BUSINESS_EVENT/process_attributes/PROCESS_LEAD_TIME >= (2 * (24*60)) + (2 * 60) + (10) |